Open
Conversation
mdenolle
requested changes
Mar 3, 2026
mdenolle
left a comment
There was a problem hiding this comment.
The job failed due to a Liquid syntax error at line 30 of _pages/people/anjani-mirchandani.md:
Liquid syntax error (line 30): Tag '{%' was not properly terminated
Solution:
Inspect line 30:
{% assign member = site.data.team_members | where: "id", page.id | first %}It is correct except for its surrounding RTF encoding and escaped characters (e.g., \{% instead of {%). The file appears to contain raw RTF, which is not valid for Markdown or Jekyll page processing.
To fix:
- Remove all RTF syntax from the file—ensure only Markdown and Liquid are present.
- Make sure all Liquid tags are unescaped (e.g., use
{% ... %}instead of\{% ... %\}). - Clean up metadata (frontmatter) at the top; ensure there are no stray characters or encoding artifacts.
Here’s a corrected snippet:
---
layout: member
id: anjani-mirchandani
title: "Anjani Mirchandani"
permalink: /people/anjani-mirchandani/
photo: anjani-mirchandani.jpg
short_description: "Undergraduate Student - Alaska Tomography using DAS"
email: ajm76@uw.edu
cv:
website:
scholar:
orcid:
github: https://github.com/ajm-glitch?tab=repositories
linkedin: http://www.linkedin.com/in/anjani-mirchandani
links:
---
<div style="display: flex; align-items: center; gap: 2rem;flex-wrap: wrap;">
<img src="{{ site.baseurl }}/images/teampic/{{ page.photo }}" class="rounded-circle" style="width:160px;height:160px;object-fit:cover;border:3px solid #eee;" alt="{{ page.title }}">
<div>
<h2 style="margin-bottom:0.5rem;">{{ page.title }}</h2>
<span style="font-size:1.1rem; color:#555;">{{ page.short_description }}</span><br>
{% assign member = site.data.team_members | where: "id", page.id | first %}
<span style="font-size:1rem; color:#888;">{{ member.role }}</span>
<!-- ... -->
</div>
</div>After you remove the RTF and escaped Liquid tags, the build should succeed.
Updated the member page for Anjani Mirchandani to use YAML front matter format and improved the layout.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added anjani-mirchandani.md, anjani-mirchandani.jpg, updated team_members.yaml file